Histogram

data class Histogram(name: String, sum: Int, count: Int, buckets: List<Bucket>)

Chrome histogram.

Constructors

Histogram
Link copied to clipboard
fun Histogram(name: String, sum: Int, count: Int, buckets: List<Bucket>)

Properties

buckets
Link copied to clipboard
val buckets: List<Bucket>
Buckets.
count
Link copied to clipboard
val count: Int
Total number of samples.
name
Link copied to clipboard
val name: String
Name.
sum
Link copied to clipboard
val sum: Int
Sum of sample values.

Sources

jvm source
Link copied to clipboard